d941e1193a1f471ea43bf45afb06f9f262c59277,cdap-app-fabric/src/test/java/co/cask/cdap/internal/app/runtime/batch/AppWithMapReduceUsingFileSet.java,AppWithMapReduceUsingFileSet,configure,#,43
Before Change
setDescription("Application with MapReduce job using file as dataset");
createDataset(inputDataset, "fileSet", FileSetProperties.builder()
.setInputFormat(TextInputFormat.class)
.setOutputFormat(TextOutputFormat.class).build());
if (!outputDataset.equals(inputDataset)) {
createDataset(outputDataset, "fileSet", FileSetProperties.builder()
.setBasePath("/foo/my-file-output")
After Change
setDescription("Application with MapReduce job using file as dataset");
createDataset(inputDataset, "fileSet", FileSetProperties.builder()
.setInputFormat(TextInputFormat.class)
.setOutputFormat(TextOutputFormat.class)
.setOutputProperty(TextOutputFormat.SEPERATOR, ":")
.build());
if (!outputDataset.equals(inputDataset)) {
createDataset(outputDataset, "fileSet", FileSetProperties.builder()
.setBasePath("/foo/my-file-output")